home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / usr_-_Usr_Files / BIN / POD2TEXT < prev    next >
Text File  |  1999-09-17  |  177b  |  13 lines

  1. #!/usr/bin/perl
  2.     eval 'exec /usr/bin/perl -S $0 ${1+"$@"}'
  3.     if $running_under_some_shell;
  4.  
  5. use Pod::Text;
  6.  
  7. if(@ARGV) {
  8.     pod2text($ARGV[0]);
  9. } else {
  10.     pod2text("<&STDIN");
  11. }
  12.  
  13.